home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / rectypes.sql < prev    next >
Text File  |  2000-05-12  |  686b  |  18 lines

  1. /* RCSVER $Id: rectypes.sql,v 1.2 1999-02-24 15:05:41-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        rectypes.sql
  6. * Date:        12/28/1998
  7. * memo:        Randy Wood
  8. * Description:    Create the rectypes table. This table contains all of the
  9. *        record types written by the farebox.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE rectypes
  13. (
  14.     record_type    NUMBER(38),    /* ID of record type */
  15.     descr        VARCHAR2(30),    /* Description of record type */
  16.     CONSTRAINT pk_rectypes PRIMARY KEY (record_type)
  17. );
  18.